home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
AppleEvents
/
Records
/
AEMember.h
< prev
next >
Wrap
Text File
|
2000-06-23
|
480b
|
28 lines
// AEMember.h
#ifndef AEMember_h
#define AEMember_h
#ifndef ConstAEMember_h
#include "ConstAEMember.h"
#endif
class AEDescriptor;
class AEMember: public ConstAEMember
{
public:
AEMember( AEStruct& theRecord, AEKey theKey )
: ConstAEMember( theRecord, theKey )
{}
AEStruct& Record() const { return const_cast<AEStruct&>( ConstAEMember::Record() ); }
void Remove();
void operator=( const AEDescriptor& );
void Set( AEType, ConstData );
};
#endif